home *** CD-ROM | disk | FTP | other *** search
- Right now, there are three dso's to support the OpenGL core:
-
- /usr/lib/X11/dyDDX/glx.so
- this contains the server side protocol decoder and dispatch
- code which calls the gl* routines as well as a few special
- routines. The Xserver dlopen()s this dso when it receives
- the first GLX request.
-
- /usr/lib/libGL.so
- this contains the client side GLX code, protocol
- encoding code, and direct rendering binding/unbinding support.
- this library exports libGLcore.so
-
- /usr/lib/libGLcore.so
- this contains the platform specific (i.e. direct) rendering
- code, and some special routines. when an application links
- with libGL.so it automatically links libGLcore.so.
-
- Also,
-
- /usr/lib/libGLU.so
- the GLU utilities library.
-